home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 363 b | 28 lines |
-
- LIB= libjpeg.a
-
- OBJS_C= jpeg.o \
- jdhuff.o \
- jdscan.o \
- jrevdct.o
-
- OBJS_ASM= huffdecode.o \
- upsample.o \
- ycc_to_rgb.o
-
- OBJS= $(OBJS_C) $(OBJS_ASM)
-
- $(LIB): $(OBJS)
- ar rv $(LIB) $(OBJS)
-
- clean:
- rm -f $(OBJS) core
-
- clobber: clean
- rm -f $(LIB)
-
- jpeg.o: jpeg.c ../image.h
- jdhuff.o: jdhuff.c jpeg.h
- jdscan.o: jdscan.c jpeg.h
- jrevdct.o: jrevdct.c jpeg.h
-